home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#)option.h 1.5 6/29/88
- */
- #ifndef option_h
- #define option_h
-
- extern int optioninvokequeue,
- optionallocateregisters,
- optioncomment,
- optionnilspace,
- optionlocals,
- optionknowct,
- optionview,
- optioninline,
- optiondebugstack,
- optioncreateonstack;
-
- #ifndef lint
- #if defined(__ANSI__) || defined(__GNUC__)
- # define OPTION(t, value) \
- (option##t == value)
- # define IFOPTION(t, value) \
- if (option##t == value)
- #else
- # define OPTION(t, value) \
- (option/**/t == value)
- # define IFOPTION(t, value) \
- if (option/**/t == value)
- #endif
- #else
- # define IFOPTION(t, value) \
- if (value)
- # define OPTION(t, value) \
- (value)
- #endif
- #endif
-